-
Notifications
You must be signed in to change notification settings - Fork 9.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
provider/cloudstack: do not force a new resource when updating load b… #11786
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for the PR! Just one or two very minor comments and then we should be good to go...
for _, i := range l.LoadBalancerRuleInstances { | ||
mbs = append(mbs, i.Id) | ||
} | ||
d.Set("member_ids", mbs) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Does this work? Is this then added as a set? Didn't know that 😉
log.Printf("[DEBUG] Members to add: %v, remove: %v", membersToAdd, membersToRemove) | ||
|
||
if len(membersToAdd) > 0 { | ||
ap := cs.LoadBalancer.NewAssignToLoadBalancerRuleParams(d.Id()) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
nitting can you make that just p
instead of ap
? The ap
used in the create function is only used because p
was already used in the same scope...
} | ||
|
||
if len(membersToRemove) > 0 { | ||
ap := cs.LoadBalancer.NewRemoveFromLoadBalancerRuleParams(d.Id()) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
nitting same goes for this one of course...
Anything more needed to get this merged? |
LGTM! Sorry for the delay @serbaut! |
I'm going to lock this issue because it has been closed for 30 days ⏳. This helps our maintainers find and focus on the active issues. If you have found a problem that seems similar to this, please open a new issue and complete the issue template so we can capture all the details necessary to investigate further. |
…alancer members